home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_fam.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10216);
  10.  script_bugtraq_id(353);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CVE-1999-0059");
  13.  name["english"] = "fam service";
  14.  name["francais"] = "Service fam";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. The fam RPC service is running. 
  19. Several versions of this service have a well-known buffer overflow condition
  20. that allows intruders to execute arbitrary commands as root on this system.
  21.  
  22. Solution : disable this service in /etc/inetd.conf
  23. See also : http://www.nai.com/nai_labs/asp_set/advisory/16_fam_adv.asp
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "
  28. Le service RPC fam tourne.
  29. Plusieurs versions de ce serveurs
  30. contiennent un bug permettant α 
  31. des pirates d'executer des commandes
  32. en tant que root via celui-ci grace
  33. α un dΘpassement de buffer.
  34.  
  35.  
  36. Solution : dΘsactivez ce service dans /etc/inetd.conf
  37. Plus d'informations : http://www.nai.com/nai_labs/asp_set/advisory/16_fam_adv.asp
  38. Facteur de risque : ElevΘ";
  39.  
  40.  
  41.  script_description(english:desc["english"], francais:desc["francais"]);
  42.  
  43.  summary["english"] = "checks the presence of a RPC service";
  44.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  45.  script_summary(english:summary["english"], francais:summary["francais"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  51.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  52.  family["english"] = "RPC"; 
  53.  family["francais"] = "RPC";
  54.  script_family(english:family["english"], francais:family["francais"]);
  55.  if ( ! defined_func("bn_random") )
  56.      script_dependencie("rpc_portmap.nasl");
  57.  else
  58.      script_dependencie("rpc_portmap.nasl", "ssh_get_info.nasl");
  59.  script_require_keys("rpc/portmap");
  60.  exit(0);
  61. }
  62.  
  63. #
  64. # The script code starts here
  65. #
  66.  
  67. include("misc_func.inc");
  68.  
  69. if ( get_kb_item("Host/RedHat/release") ) exit(0);
  70.  
  71. RPC_PROG = 391002;
  72. tcp = 0;
  73. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  74. if(!port){
  75.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  76.     tcp = 1;
  77.     }
  78.  
  79. if(port)
  80. {
  81.  if(tcp)security_warning(port);
  82.  else security_warning(port, protocol:"udp");
  83. }
  84.